CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - lex 词法分析

搜索资源列表

  1. lex(VC)

    0下载:
  2. 编译原理词法分析,产生二元式,其他的应该不用多说了吧
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:41277
    • 提供者:yangyang
  1. lex

    0下载:
  2. 词法分析,你可以看到里面的内容其实是很简单的,主要是这个理解的过程
  3. 所属分类:汇编语言

    • 发布日期:2008-10-13
    • 文件大小:36301
    • 提供者:gfjiang
  1. lex

    0下载:
  2. ① 使用自动机技术实现一个词法分析程序; ② 使用算符优先分析方法实现其语法分析程序; 需要先在运行目录下建立一个input.txt文件,将需要分析的文法放在该文件中,分析结果,会输出在output.txt文件中。
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:1681
    • 提供者:邓冰
  1. 词法分析Lex

    0下载:
  2. 名称:C语言词法分析器 功能:1)从C语言源代码文件中提取所有词素 2)检测程序的词法错误,给出错误行号及提示 3)语法分析器的预备程序 文件:分析器代码(Lex.c)、测试文件(test.c)、状态转换图、可执行程序 输出:错误记录文件、符号表文件、标识符文件-Name lexical analyzer for C language function: 1)Extract all lexems from C Language source code 2)Examine the sy
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:192513
    • 提供者:张永胜
  1. lex_and_yacc

    0下载:
  2. 是一本介绍lex词法分析工具与yacc语法分析工具的好书
  3. 所属分类:编译器/词法分析

    • 发布日期:2008-10-13
    • 文件大小:60429
    • 提供者:xujiong
  1. 使用lex分析java源程序

    0下载:
  2. Lex是美国Bell实验室用C语言研制的一个词法分析程序自生成工具。它的基本原理就是使用正则表达式扫描匹配文本,并为每一个匹配模式定义一些操作,当用C语言作宿主语言时,这些操作都由C语言实现。一种匹配的正则表达式可能会包含相关的动作。这一动作可能还包括返回一个标记。当 Lex 接收到文件或文本形式的输入时,它试图将文本与正则表达式进行匹配。它一次读入一个输入字符,直到找到一个匹配的模式。如果能够找到一个匹配的模式,Lex 就执行相关的动作(可能包括返回一个标记)。-Lex Bell Labora
  3. 所属分类:JSP源码/Java

    • 发布日期:2008-10-13
    • 文件大小:2994
    • 提供者:万宏兴
  1. lex c1词法分析器

    0下载:
  2. 为flex上运行的词法分析程序,适用于c1,能根据输入的程序输出词的类型和类号
  3. 所属分类:源码下载

  1. Lex

    0下载:
  2. 学习编译原理时候的小作业,模拟实验了词法分析程序,比较简单-Simulation of the lexical analysis procedure is relatively simple
  3. 所属分类:Compiler program

    • 发布日期:2017-04-08
    • 文件大小:191327
    • 提供者:Edward
  1. cmm-lex

    0下载:
  2. 参照清华大学《编译原理》写的cmm语言词法分析程序-Reference to Tsinghua University, Compiler Construction Principles written by cmm language lexical analysis program
  3. 所属分类:Compiler program

    • 发布日期:2017-03-28
    • 文件大小:26375
    • 提供者:叶世权
  1. flex-2.5.2.tar

    0下载:
  2. Flex词法/语法分析器源码 -Flex syntactic and phrase parser code
  3. 所属分类:Compiler program

    • 发布日期:2017-11-09
    • 文件大小:384784
    • 提供者:站长
  1. lab1

    0下载:
  2. c-词法分析(Lex自动生成) 能自动生成c-语言程序的token序列-c-lexical analysis (Lex automatically generated) can be automatically generated c-language program of the token sequence
  3. 所属分类:Compiler program

    • 发布日期:2017-04-03
    • 文件大小:12716
    • 提供者:
  1. cmm-yacc

    0下载:
  2. 使用yacc和lex编写的cmm语言的词法分析和语法分析程序.-Using yacc and lex prepared cmm language lexical analysis and syntax analysis program.
  3. 所属分类:Compiler program

    • 发布日期:2017-03-27
    • 文件大小:330769
    • 提供者:叶世权
  1. Lexan

    0下载:
  2. 编译器的第一个环节,词法分析,我们上的编译原理的第一次实验-Compiler of the first session, lexical analysis, we compiled on the principle of the first experiment
  3. 所属分类:Compiler program

    • 发布日期:2017-04-27
    • 文件大小:52499
    • 提供者:小杭
  1. calc

    0下载:
  2. 用lex实现的词法分析,用lex编译后可以实现简单的词法分析-Achieved by lex lexical analysis, the compiler can use lex simple lexical analysis
  3. 所属分类:Compiler program

    • 发布日期:2017-04-01
    • 文件大小:17889
    • 提供者:chen
  1. Lex

    0下载:
  2. 通过设计、调试词法分析程序,实现从源程序中分出各种单词的方法;熟悉词法分析程序所用的工具自动机,进一步理解自动机理论。掌握文法转换成自动机的技术及有穷自动机实现的方法。确定词法分析器的输出形式及标识符与关键字的区分方法。加深对课堂教学的理解;提高词法分析方法的实践能力。通过本实验,应达到以下目标: -Through the design, debug lexical analysis procedures, to achieve separation from the source in a
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:14703
    • 提供者:李方
  1. lex.yy

    0下载:
  2. 基于lex的编译原理实验,实现编译的词法分析阶段。-Lex principle experiment based on the compilation, implementation of the lexical analysis phase of compilation.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:11298
    • 提供者:洪鑫
  1. Parser_Generator_Guide

    0下载:
  2. 集成了lex和yacc工具的功能,可实现词法分析功能,在windows环境下可运行。-Lex and yacc tool integrates the function of lexical analysis functions can be realized in the windows environment to run.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-09
    • 文件大小:1274037
    • 提供者:
  1. From-lex-yacc-to-javacc

    0下载:
  2. lex,yacc是词法、语法分析工具,文档介绍了词法语法分析过程及java下的lex-yacc工具——java-lex, yacc is a lexical, grammar analysis tools, document describes the process of lexical and syntax analysis under the lex-yacc java tools- javacc
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:47246
    • 提供者:coransaku
  1. LEX

    0下载:
  2. 词法分析时,常常会用到超前搜索方法。如当前待分析字符串为“a +”,当前字符为’ ’,此时,分析器倒底是将其分析为大于关系运算符还是大于等于关 系运算符呢?显然,只有知道下一个字符是什么才能下结论。于是分析器读入下一个字符’+’,这时可知应将’ ’解释为大于运算符。但此时,超前读了一个字符’+’,所以要回退一个字符,词法分析器才能正常运行。在分析标识符,无符号整数等时也有类似情况。-Lexical analysis, often use advanced search method. If th
  3. 所属分类:控制台(字符窗口)编程

    • 发布日期:2017-05-06
    • 文件大小:1123786
    • 提供者:元宝
  1. Lex

    0下载:
  2. 编译原理的作业题,书后的实验二。主要是程序的词法分析功能,集中于课本的内容。-Compiler theory of job title, the book s second experiment. Mainly lexical analysis program, focusing on the content of textbooks.
  3. 所属分类:Compiler program

    • 发布日期:2017-04-04
    • 文件大小:3594
    • 提供者:aa
« 1 23 4 5 6 »
搜珍网 www.dssz.com